home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PROGRAM
/
DDJ0992.ARJ
/
DFALLOC.C
< prev
next >
Wrap
Text File
|
1992-08-12
|
1KB
|
61 lines
/* ---------- dfalloc.c ---------- */
#include "dflat.h"
static void AllocationError(void)
{
WINDOW wnd;
static BOOL OnceIn = FALSE;
extern jmp_buf AllocError;
extern BOOL AllocTesting;
static char *ErrMsg[] = {
"┌────────────────┐",
"│ Out of Memory! │",
"└────────────────┘"
};
int x, y;
char savbuf[108];
RECT rc = {30,11,47,13};
if (!OnceIn) {
OnceIn = TRUE;
/* ------ close all windows ------ */
SendMessage(ApplicationWindow, CLOSE_WINDOW, 0, 0);
getvideo(rc, savbuf);
for (x = 0; x < 18; x++) {
for (y = 0; y < 3; y++) {
int c = (255 & (*(*(ErrMsg+y)+x))) | 0x7000;
PutVideoChar(x+rc.lf, y+rc.tp, c);
}
}
getkey();
storevideo(rc, savbuf);
if (AllocTesting)
longjmp(AllocError, 1);
}
}
void *DFcalloc(size_t nitems, size_t size)
{
void *rtn = calloc(nitems, size);
if (size && rtn == NULL)
AllocationError();
return rtn;
}
void *DFmalloc(size_t size)
{
void *rtn = malloc(size);
if (size && rtn == NULL)
AllocationError();
return rtn;
}
void *DFrealloc(void *block, size_t size)
{
void *rtn = realloc(block, size);
if (size && rtn == NULL)
AllocationError();
return rtn;
}